home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 1 / ETO Development Tools 1.iso / Essentials / Developer Essentials Jul 90 / Programming / MPW Dynamo 3.0 / dynamo.sample / makefile < prev    next >
Encoding:
Makefile  |  1990-04-11  |  778 b   |  28 lines  |  [TEXT/MPS ]

  1. ObjDir  = :o:
  2. App        = sample
  3. Objects = {ObjDir}sample.obj
  4. Server  = your.server:your.name:
  5.  
  6. {App} ƒ {ObjDir}sample.lnk
  7. #    duplicate -y -d {ObjDir}sample.bin≈ {Server}
  8.     DuplicateIIGS -y -mac {ObjDir}sample.bin≈ :
  9.  
  10. {ObjDir}sample.lnk ƒ {Objects} makefile
  11.     LinkIIGS -x ∂
  12.         -lib {dynamo}libs:rt.lib {Objects} ∂
  13.         -lseg sample1  -org $0800 ∂
  14.             {ObjDir}sample.obj(part1) ∂
  15.             {ObjDir}sample.obj(strspace) ∂
  16.         -lseg sample2  -org $8000 ∂
  17.             {ObjDir}sample.obj(part2) ∂
  18.         -lseg libstuff -org $9000 ∂
  19.             {dynamo}libs:rt.lib ∂
  20.         -lseg trash    -org $1F00 ∂
  21.             {ObjDir}sample.obj(varspace) ∂
  22.         -o {ObjDir}sample.lnk
  23.     makebiniigs {ObjDir}sample.lnk -o {ObjDir}sample.bin
  24.     Delete {ObjDir}sample.bin.4
  25.  
  26. {ObjDir}sample.obj    ƒ app.config makefile sample.a
  27.     asmiigs sample.a -o {ObjDir}sample.obj
  28.